C# |
---|
public static String XmlDecode(String text) |
C# |
---|
using LJCNetCommon; // Decodes an encoded XML string. private static void XmlDecode() { // Setup string xml = "<text>Here & There</text>"; string encoded = NetCommon.XmlEncode(xml); // Decodes an encoded XML string. string text = NetCommon.XmlDecode(encoded); } |